From: Ken Raeburn Date: Tue, 16 Jul 2002 15:50:04 +0000 (+0000) Subject: * xfns.c (validate_x_resource_name): Use SSET. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~56174 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=b06a00fb6d494cfaf24199bcb7d0a95d5ce2efeb;p=emacs.git * xfns.c (validate_x_resource_name): Use SSET. --- diff --git a/src/xfns.c b/src/xfns.c index 2b84c6d0376..4f23af432c8 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -2805,7 +2805,7 @@ validate_x_resource_name () || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == '-' || c == '_')) - SREF (new, i) = '_'; + SSET (new, i, '_'); } }